home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / DELPHI32 / COMPNENT / DTOOLS3 / DTOOLS3.ZIP / 16 / DTOOLS.PAS < prev    next >
Pascal/Delphi Source File  |  1996-04-28  |  702b  |  52 lines

  1. unit DTools;
  2.  
  3. interface
  4.  
  5. procedure Register;
  6.  
  7. implementation
  8.  
  9. uses
  10.   Classes,
  11.   AnaClock,
  12.   Balloon,
  13.   CustBtn,
  14.   DTMisc,
  15.   Feedback,
  16.   Ledgadgt,
  17.   MMGadget,
  18.   Toggler,
  19.   VisApp;
  20.  
  21. procedure Register;
  22. begin
  23.   RegisterComponents('DTools',[
  24.     TAnalogClock,
  25.     TBalloonHint,
  26.     TBWCCCheckBox,
  27.     TBWCCRadioButton,
  28.     TCustomHint,
  29.     TDozer,
  30.     TFComboBox,
  31.     TFocusPanel,
  32.     TFountainFill,
  33.     TLEDCheckBox,
  34.     TLEDClock,
  35.     TLEDLabel,
  36.     TLEDRadioButton,
  37.     TNeatoMeter,
  38.     TODButton,
  39.     TODCheckBox,
  40.     TODCycler,
  41.     TODRadioButton,
  42.     TPieMeter,
  43.     TRotaryKnob,
  44.     TShadowButton,
  45.     TTiledBitmap,
  46.     TVisualApp
  47.   ]);
  48. end;
  49.  
  50. end.
  51.  
  52.